ChatUser

data class ChatUser(val userId: String, val attributes: Map<String, String>? = null)

Represents a user participating in chat room.

Parameters

userId

Unique identifier of a user

attributes

Key-value object for any additional data

Constructors

Link copied to clipboard
fun ChatUser(userId: String, attributes: Map<String, String>? = null)

Properties

Link copied to clipboard
val attributes: Map<String, String>? = null
Link copied to clipboard
val userId: String